home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / biz / haage / WarpUP_V40Upd.lha / WarpUP-WarpOS / PowerUpEmu / tests / hello_world.c next >
C/C++ Source or Header  |  1999-04-14  |  95b  |  9 lines

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. main()
  5. {
  6.   printf("Hello %s!\n","World");
  7.   exit(0);
  8. }
  9.